home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / sound / rsynth22.zip / PROTO.H < prev    next >
C/C++ Source or Header  |  1994-11-08  |  366b  |  21 lines

  1. /* $Id: proto.h,v 1.13 1994/11/08 13:30:50 a904209 Exp a904209 $
  2. */
  3. #ifndef PROTO
  4. #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
  5. #define PROTO(ARGS) ARGS
  6. #ifndef NOPROTOFLOAT
  7. #define Float float
  8. #else
  9. #define Float double
  10. #endif
  11. #else
  12. #define PROTO(ARGS) ()
  13. #define Float double
  14. #endif
  15.  
  16. #ifndef __GNUC__
  17. #define inline
  18. #endif
  19.  
  20. #endif /* PROTO */
  21.